@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Paytone One';
    
}

section{
    width: 100%;
    height: 100vh;
}

section nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0,  5);
    z-index: 1000;
    background-color: #C81F34;
}

section nav .logo img{
    width: 100px;
    cursor: pointer;
    margin: 7px 0;
}

section nav ul{
    list-style: none;
    margin-right: 300px;
}

section nav ul li{
    display: inline-block;
    margin: 0 15px;
}

section nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 17px;
    transition: 0.1s;
}

section nav ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    background: #F4D2D6;
    display: block;
    transition: 0.2s linear;
}

section nav ul li a:hover::after{
    width: 100%;
}

section nav ul li a:hover{
    color: #F4D2D6;
}

section .delivery{
    position: absolute;
    margin-left: 1200px;
}

section .delivery img {
    transition: 0.3s;
}

section .delivery:hover img {
    animation: moveX 0.8s ease-out 1;
}

@keyframes moveX {
    0%   { transform: translateX(0); }
    12%  { transform: translateX(-6px); }
    25%  { transform: translateX(6px); }
    37%  { transform: translateX(-6px); }
    50%  { transform: translateX(6px); }
    62%  { transform: translateX(-3px); }
    75%  { transform: translateX(3px); }
    87%  { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}


section .main{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    top: 130px;
}

section .main .main-text h1{
    font-size: 40px;
    position: relative;
    top: -90px;
    left: 20px;
    color: #CA1133;
}

section .main .main-image img{
    width: 850px;
    position: relative;
    left: 70px;
    margin-top: 40px;
}

section p{
    width: 600px;
    text-align: justify;
    position: relative;
    left: 91px;
    bottom: 150px;
    line-height: 22px;
}

section .main-btn {
    background: #E31C3D;
    position: relative;
    left: 91px;
    bottom: 100px;
    width: 150px;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section .main-btn a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

section .main-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(227, 28, 61, 0.6);
}
